python input tuple from user

23

t = input()
a = tuple(int(x) for x in t.split())
#view this tuple
print(a)
tuple(map(int,raw_input().split(',')))
tuple(int(x.strip()) for x in raw_input().split(','))

Comments

Submit
0 Comments